ebe4854364fc13e4a898618f3e9b3f358f6735ee,Tests/ERXTest/Sources/er/extensions/eof/ERXKeyTest.java,ERXKeyTest,testAtSortDesc,#,514
Before Change
@Test
public void testAtSortDesc() {
NSArray<Employee> first = (NSArray<Employee>) Company.EMPLOYEES.atSortDesc(Employee.FIRST_NAME).valueInObject(sortCo);
assertEquals(new NSArray<Employee>(aaBb, Abba), first);
NSArray<Employee> last = (NSArray<Employee>) Company.EMPLOYEES.atSortDesc(Employee.LAST_NAME,Employee.FIRST_NAME).valueInObject(sortCo);
assertEquals(new NSArray<Employee>(Abba, aaBb), last);
After Change
@Test
public void testAtSortDesc() {
NSArray<Employee> first = Company.EMPLOYEES.atSortDesc(Employee.FIRST_NAME).arrayValueInObject(sortCo);
assertEquals(new NSArray<Employee>(aaBb, Abba), first);
NSArray<Employee> last = Company.EMPLOYEES.atSortDesc(Employee.LAST_NAME,Employee.FIRST_NAME).arrayValueInObject(sortCo);
assertEquals(new NSArray<Employee>(Abba, aaBb), last);